home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -in_the_mag- / basics / hisoft / const.lha / const / cars_sub.bas < prev    next >
BASIC Source File  |  1996-01-25  |  156b  |  12 lines

  1. rem $include cars_h
  2.  
  3. sub cars
  4.     dim shared cars$( 12 )
  5.     q=freefile
  6.     open "cars" for input as q
  7.     for n=0 to 12
  8.         line input#q,cars$(n)
  9.     next
  10.     close q
  11. end sub
  12.